Skip to content

Conversation

jlburkhead
Copy link

This fixes a bug where the break doesnt break out of the outer loop when the csv file has more than the sampleLines (15) number of lines

if actualSampleLines >= sampleLines {
break
if actualSampleLines > sampleLines {
actualSampleLines--
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alternative to avoid this could be to switch up the order:

if actualSampleLines >= sampleLines {
    return
}
actualSampleLines++

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants